home *** CD-ROM | disk | FTP | other *** search
/ Champak 139 / (Vol 139) Sep 24 2011.iso / Games / kirby.swf / scripts / frame_11 / PlaceObject2_88_2 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2011-09-24  |  320b  |  12 lines

  1. onClipEvent(enterFrame){
  2.    if(_root.Levelchange._currentframe >= 50)
  3.    {
  4.       this._y = Math.floor(this._y - (this._y - 700) / 7);
  5.    }
  6.    else if(_root.Clouds._currentframe >= _root.Clouds._totalframes - 2)
  7.    {
  8.       this._y = Math.floor(this._y / 5);
  9.    }
  10.    this._x = Math.round(_root.Level._x / 3);
  11. }
  12.